home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 28 / PC Gamer IT CD 28 1-2.iso / MEDIA / REVIEWS.DXR / Internal_61_clickableEmail.ls < prev    next >
Encoding:
Text File  |  1997-12-01  |  695 b   |  27 lines

  1. on mouseEnter me
  2.   if the text of field "email" <> EMPTY then
  3.     cursor(280)
  4.   else
  5.     nothing()
  6.   end if
  7. end
  8.  
  9. on mouseLeave me
  10.   cursor(-1)
  11. end
  12.  
  13. on mouseDown me
  14.   if the text of field "email" <> EMPTY then
  15.     if the text of field "emailSelect" = EMPTY then
  16.       alert("You have not set your Email Program. You can do this now.")
  17.       go("config", "net")
  18.     else
  19.       copyToClipBoard(member "email")
  20.       alert("Now copying the email address to the clipboard and launching your email program. Once your email program is launched you can paste (CTRL-V) the email address into the recipient field.")
  21.       open(the text of field "emailSelect")
  22.     end if
  23.   else
  24.     nothing()
  25.   end if
  26. end
  27.